home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / metkit / catrecv.h < prev    next >
C/C++ Source or Header  |  1997-06-07  |  998b  |  40 lines

  1. //    Copyright (C) 1996, 1997 Meta Four Software.  All rights reserved.
  2. //
  3. //    Catalog receive application sample code
  4. //
  5. //! rev="$Id: catrecv.h,v 1.3 1997/05/27 00:06:21 jcw Rel $"
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10.  
  11. #include "resource.h"        // main symbols
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMyApp:
  15. // See catrecv.cpp for the implementation of this class
  16. //
  17.  
  18. class CMyApp : public CWinApp
  19. {
  20. public:
  21.     CMyApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CMyApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CMyApp)
  33.         // NOTE - the ClassWizard will add and remove member functions here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code !
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.